home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
gnustuff
/
tos
/
curses
/
crssrc12.zoo
/
src
/
testtab.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-09-27
|
409 b
|
23 lines
#include <curses.h>
main()
{
initscr();
clear();
move(9,0);
addstr("123456781234567812345678123456781234567812345678");
move(10,0);
addch('\t'); addch('8'); addch('\t'); addch('8'); addch('\t'); addch('8');
addch('\t'); addch('8');
move(15,0);
addstr("\t8\t8\t8\t8");
move(17,0); addstr("hit return to finish -->");
refresh();
getch();
endwin();
}